home *** CD-ROM | disk | FTP | other *** search
- .key SOU
-
- ; INFO simple script for compiling the example sources
- ; IN SOU = filename (".s" can be omitted) of the source to compile
- ; (none to compile all)
- ; NOTE - requires PhxAss to be in the commands' path
- ; - must be called from its (=sources') directory
-
- Echo ""
- If "<SOU>" EQ ""
- Echo "assembling all sources..."
- List ~(do|s.tmp) LFORMAT "PhxAss %s TO /exe/" >s.tmp
- Execute s.tmp
- Delete s.tmp QUIET
- Else
- If EXISTS "<SOU>"
- Echo "assembling <SOU> ..."
- PhxAss "<SOU>" TO /exe/
- Else
- If EXISTS "<SOU>.s"
- Echo "assembling <SOU>.s ..."
- PhxAss "<SOU>.s" TO /exe/
- EndIf
- EndIf
- EndIf
-